
#players{
	background: #fff;
	width: 60%;
	height: 150px;
	border-radius: 30px;
	align-content: center;
	align-items: center;
	margin: 10px auto;
	padding: 1%;
	display: flex;
}

#img_player{
	--background: red;
	position: relative;
	width: auto;
	height: 100%;
	align-content: center;
	align-items: center;
    justify-content: center;
	display: flex;
	padding: 5%;
	margin: 0 auto;
}

#img_player img{
	width: 100%;
	height: auto;
    margin: 0 auto;
	margin-top: 70%;
    align-content: center;
	align-items: center;
    justify-content: center;
	position: absolute;
}

label{
    --background-color: aqua;
	overflow: hidden;
	display: flex;
	position: relative;
    align-content: center;
	align-items: center;
    justify-content: center;
	width: 100%;
    height: 100%;
	z-index: 2;
	margin: 0 auto;
	margin: 2%;
}

#players input{
	color: #fff;
	font-size: 28px;
	position: relative;
	width: 80%;
	height: auto;
	margin: 0 auto;
	padding: 0;
	background-color: #4f4f4f;
	border: none;
	border-radius: 4px;
}

#players button{
	width: 200px;
	height: 40px;
}

.move1obj1 {
	animation: up_down 2.5s 1 alternate;
}

.move1obj2 {
	animation: left_right 3s 1 alternate;
}

@keyframes left_right {
	0% {transform: translateX(0%);}
	100% {transform: translateX(134%);}
}

@keyframes up_down {
    0%, 100% {transform: translateX(0);}
	50% {transform: translateY(-100%);}
}

.move2obj1 {
	animation: down_up 2.5s 1 alternate;
}

.move2obj2 {
	animation: right_left 3s 1 alternate;
}

@keyframes right_left {
	0% {transform: translateX(0%);}
	100% {transform: translateX(-134%);}
}

@keyframes down_up {
    0%, 100% {transform: translateX(0);}
	50% {transform: translateY(100%);}
}